@font-face {
    font-family: 'Aboreto';
    src: url('fonts/Aboreto-Regular.ttf') format('truetype');
}

@font-face {
    font-family: Manrope;
    src: url('fonts/Manrope-VariableFont_wght.ttf') format('truetype');
}

body {
    background-color: rgb(5, 3, 1);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Manrope', sans-serif;
    min-height: 100vh;
}

.center-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    align-items: center;
    text-align: center;
    padding: 4% 5% 0;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
}

#logo {
    width: 70%;
    max-width: 800px;
}

#text1 {
    margin-top: 0;
    color: rgb(255, 250, 238);
    font-family: 'Aboreto';
    font-size: 1.9em;    
    line-height: 1.7em;
    font-weight: lighter;
}

p {
    font-size: 1.3em;
    color: rgb(255, 250, 238);
    font-weight: lighter;
    line-height: 1.7em;
    max-width: 800px;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: rgb(255, 250, 238);
    padding: 12px 12px;
    font-size: 0.9em;
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
    border-radius: 6px;
}

.button:hover {
    background-color: rgb(196, 70, 99);
    color: rgb(255, 250, 238);
}

.button img {
    width: 25px;
    height: 25px;
    transition: filter 0.3s;
}

.button:hover img {
    filter: brightness(0) invert(1);
}

#ice_creams {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-height: 20vh;
    object-fit: contain;
    z-index: 1;
}

/* Cercles de décoration */
.circle-container {
    position: fixed;
    pointer-events: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid rgb(255, 250, 238);
}

.top-left-large {
    width: 368px;
    height: 368px;
    top: 100px;
    left: -125px;
}

.top-left-small {
    width: 245px;
    height: 245px;
    top: -20px;
    left: 50px;
}

.bottom-right-large {
    width: 368px;
    height: 368px;
    bottom: 100px;
    right: -125px;
}

.bottom-right-small {
    width: 245px;
    height: 245px;
    bottom: -20px;
    right: 50px;
}

/* ----------- Responsive ----------- */

@media screen and (max-width: 1000px) {
    #logo {
        width: 80%;
    }

    #text1 {
        font-size: 1.2em;
	line-height: 1.5em;
    }

    p {
        font-size: 1em;
        padding: 0 10px;
    }

    .button {
        font-size: 0.9em;
        padding: 10px 10px;
    }

    .circle {
        display: none;
    }

    #ice_creams {
       max-height: 15vh;
    }
}

